home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / apps / 93 / applic / svbndpgm.doc < prev    next >
Text File  |  1987-01-15  |  3KB  |  46 lines

  1. ********************************************************************************
  2. *                               SAVINGS BOND PROGRAM                           *
  3. *                          WRITTEN 12-10-86 BY DICK STUBBS                     *
  4. *                              400 NO. STUBBS BAY ROAD                         *
  5. *                              LONG LAKE, MINN. 55356                          *
  6. ********************************************************************************
  7.  
  8.     Because of the need to track one's investments in U.S. savings bonds, I
  9. have witten a program in BASIC that keeps tabs on all of one's savings bonds.
  10. The program is a menu driven program called 'SVBNDPGM.BAS' that is intended
  11. to be used on the ATARI ST.
  12.      The program is very easy to use.  When it is first run, the user is
  13. prompted for a filename, which must be 8 characters or less, plus a 3 character
  14. extention (i.e. 'filename.ext').  The user is then asked to verify that the
  15. filename is correct.  It is very important that this filename be correct, as
  16. that is the name of the file that all of the bond data is stored in.   
  17.     After satisfying the filename prompt, a menu is displayed which gives the
  18. user several options as to which function he/she wants to perform on the above
  19. named file (i.e. create a new file, add to an existing file, list/correct
  20. individual bond data, delete items from file, list entire file, list bond 
  21. summary, print entire file, print bond summary, print mature bond list, use 
  22. another file, and exit program).  
  23.     After selecting the option desired, the user is prompted for all required
  24. input.  Edit checks are performed on various data fields to be input so as to
  25. insure that the data put into the file is reasonable.  By just following the
  26. prompts, the user can easily create and manipulate the file.
  27.     Of particular interst is the option to list/correct individual bonds.
  28. This option allows a user to correct any data field (i.e. issue date, bond
  29. type, etc.) of a particular bond without having to retype all of the data for
  30. that bond. 
  31.     This program allows data for up to 100 bonds to be entered at one time.
  32. This limit can easily be changed by changing the dimension statements in the
  33. initialization module of the program (if anyone can stand to enter data for
  34. more than 100 bonds at one time).
  35.  
  36. *******************************************************************************
  37.     To run the savings bond program, BASIC must be first booted into the ST.
  38. Then the program 'SVBNDPGM.BAS' must be loaded.  After that, it's just a matter
  39. running the program and following the prompts.  
  40. *******************************************************************************
  41.  
  42.     This program is set up to print reports on the EPSON printer.  If another
  43. printer is to be used, some modification may be necessary.
  44.  
  45.                                  GOOD LUCK!!! 
  46.